home *** CD-ROM | disk | FTP | other *** search
- program Compare;
-
- uses
- Forms,
- rbCompar in 'rbCompar.pas' {Form1};
-
- {$R *.RES}
-
- begin
- {$IFDEF WIN32}
- Application.Initialize;
- {$ENDIF}
- Application.Title := 'Compare Utility';
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.